2017 © Pedro Peláez
 

application fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

image

phpfmt-next/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  • Sunday, January 28, 2018
  • by kokororin
  • Repository
  • 3 Watchers
  • 32 Stars
  • 197 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 8 Open issues
  • 100 Versions
  • 0 % Grown

The README.md

phpfmt

Requirements

  • PHP >= 5.6.0 to run the formatter. Note that the formatter can parse even a PHP file version 4 in case needed. HHVM is not supported.

Usage

$ php fmt.phar filename.php
$ php fmt.phar --help
Usage: fmt.phar [-hv] [-o=FILENAME] [--config=FILENAME] [--cache[=FILENAME]] [options] <target>
  --align_double_arrow              enable auto align of T_DOUBLE_ARROW
  --align_equals                    enable auto align of ST_EQUAL
  --cache[=FILENAME]                cache file. Default: .php.tools.cache
  --cakephp                         Apply CakePHP coding style
  --config=FILENAME                 configuration file. Default: .phpfmt.ini
  --constructor=type                analyse classes for attributes and generate constructor - camel, snake, golang
  --dry-run                         Runs the formatter without actually changing files; returns exit code 1 if changes would have been applied
  --enable_auto_align               enable auto align of ST_EQUAL and T_DOUBLE_ARROW
  --exclude=pass1,passN,...         disable specific passes
  --help-pass                       show specific information for one pass
  --ignore=PATTERN-1,PATTERN-N,...  ignore file names whose names contain any PATTERN-N
  --indent_with_space=SIZE          use spaces instead of tabs for indentation. Default 4
  --lint-before                     lint files before pretty printing (PHP must be declared in %PATH%/$PATH)
  --list                            list possible transformations
  --list-simple                     list possible transformations - greppable
  --no-backup                       no backup file (original.php~)
  --passes=pass1,passN,...          call specific compiler pass
  --profile=NAME                    use one of profiles present in configuration file
  --psr                             activate PSR1 and PSR2 styles
  --psr1                            activate PSR1 style
  --psr1-naming                     activate PSR1 style - Section 3 and 4.3 - Class and method names case.
  --psr2                            activate PSR2 style
  --selfupdate                      self-update fmt.phar from Kotori API
  --setters_and_getters=type        analyse classes for attributes and generate setters and getters - camel, snake, golang
  --smart_linebreak_after_curly     convert multistatement blocks into multiline blocks
  --version                         version
  --visibility_order                fixes visibiliy order for method in classes - PSR-2 4.2
  --yoda                            yoda-style comparisons
  -h, --help                        this help message
  -o=-                              output the formatted code to standard output
  -o=file                           output the formatted code to "file"
  -v                                verbose

If <target> is "-", it reads from stdin

Supported Transformations

| Key | Description | | -------- | ----------- | | AddMissingParentheses | Add extra parentheses in new instantiations. | | AliasToMaster | Replace function aliases to their masters - only basic syntax alias. | | AlignConstVisibilityEquals | Vertically align "=" of visibility and const blocks. | | AlignDoubleArrow | Vertically align T_DOUBLE_ARROW (=>). | | AlignDoubleSlashComments | Vertically align "//" comments. | | AlignEquals | Vertically align "=". | | AlignGroupDoubleArrow | Vertically align T_DOUBLE_ARROW (=>) by line groups. | | AlignPHPCode | Align PHP code within HTML block. | | AlignTypehint | Vertically align function type hints. | | AllmanStyleBraces | Transform all curly braces into Allman-style. | | AutoPreincrement | Automatically convert postincrement to preincrement. | | AutoSemicolon | Add semicolons in statements ends. | | CakePHPStyle | Applies CakePHP Coding Style | | ClassToSelf | "self" is preferred within class, trait or interface. | | ClassToStatic | "static" is preferred within class, trait or interface. | | ConvertOpenTagWithEcho | Convert from "<?=" to "<?php echo ". | | DocBlockToComment | Replace docblocks with regular comments when used in non structural elements. | | DoubleToSingleQuote | Convert from double to single quotes. | | EchoToPrint | Convert from T_ECHO to print. | | EncapsulateNamespaces | Encapsulate namespaces with curly braces | | GeneratePHPDoc | Automatically generates PHPDoc blocks | | IndentTernaryConditions | Applies indentation to ternary conditions. | | JoinToImplode | Replace implode() alias (join() -> implode()). | | LeftWordWrap | Word wrap at 80 columns - left justify. | | LongArray | Convert short to long arrays. | | MergeElseIf | Merge if with else. | | SplitElseIf | Merge if with else. | | MergeNamespaceWithOpenTag | Ensure there is no more than one linebreak before namespace | | MildAutoPreincrement | Automatically convert postincrement to preincrement. (Deprecated pass. Use AutoPreincrement instead). | | NewLineBeforeReturn | Add an empty line before T_RETURN. | | OrganizeClass | Organize class, interface and trait structure. | | OrderAndRemoveUseClauses | Order use block and remove unused imports. | | OnlyOrderUseClauses | Order use block - do not remove unused imports. | | OrderMethod | Organize class, interface and trait structure. | | OrderMethodAndVisibility | Organize class, interface and trait structure. | | PHPDocTypesToFunctionTypehint | Read variable types from PHPDoc blocks and add them in function signatures. | | PrettyPrintDocBlocks | Prettify Doc Blocks | | PSR2EmptyFunction | Merges in the same line of function header the body of empty functions. | | PSR2MultilineFunctionParams | Break function parameters into multiple lines. | | ReindentAndAlignObjOps | Align object operators. | | ReindentSwitchBlocks | Reindent one level deeper the content of switch blocks. | | RemoveIncludeParentheses | Remove parentheses from include declarations. | | RemoveSemicolonAfterCurly | Remove semicolon after closing curly brace. | | RemoveUseLeadingSlash | Remove leading slash in T_USE imports. | | ReplaceBooleanAndOr | Convert from "and"/"or" to "&&"/"||". Danger! This pass leads to behavior change. | | ReplaceIsNull | Replace is_null($a) with null === $a. | | RestoreComments | Revert any formatting of comments content. | | ReturnNull | Simplify empty returns. | | ShortArray | Convert old array into new array. (array() -> []) | | SmartLnAfterCurlyOpen | Add line break when implicit curly block is added. | | SortUseNameSpace | Organize use clauses by length and alphabetic order. | | SpaceAroundControlStructures | Add space around control structures. | | SpaceAfterExclamationMark | Add space after exclamation mark. | | SpaceAroundExclamationMark | Add spaces around exclamation mark. | | SpaceAroundParentheses | Add spaces inside parentheses. | | SpaceBetweenMethods | Put space between methods. | | StrictBehavior | Activate strict option in array_search, base64_decode, in_array, array_keys, mb_detect_encoding. Danger! This pass leads to behavior change. | | StrictComparison | All comparisons are converted to strict. Danger! This pass leads to behavior change. | | StripExtraCommaInArray | Remove trailing commas within array blocks | | StripNewlineAfterClassOpen | Strip empty lines after class opening curly brace. | | StripNewlineAfterCurlyOpen | Strip empty lines after opening curly brace. | | StripNewlineWithinClassBody | Strip empty lines after class opening curly brace. | | StripSpaces | Remove all empty spaces | | StripSpaceWithinControlStructures | Strip empty lines within control structures. | | TightConcat | Ensure string concatenation does not have spaces, except when close to numbers. | | TrimSpaceBeforeSemicolon | Remove empty lines before semi-colon. | | UpgradeToPreg | Upgrade ereg_* calls to preg_* | | WordWrap | Word wrap at 80 columns. | | WrongConstructorName | Update old constructor names into new ones. http://php.net/manual/en/language.oop5.decon.php | | YodaComparisons | Execute Yoda Comparisons. | , (*1)

What does the Code Formatter do?

K&R configuration

Before After
<?php
for($i = 0; $i < 10; $i++)
{
if($i%2==0)
echo "Flipflop";
}
<?php
for ($i = 0; $i < 10; $i++) {
    if ($i%2 == 0) {
        echo "Flipflop";
    }
}
<?php
$a = 10;
$otherVar = 20;
$third = 30;
<?php
$a        = 10;
$otherVar = 20;
$third    = 30;
This can be disabled with the option "disable_auto_align"
<?php
namespace NS\Something;
use \OtherNS\C;
use \OtherNS\B;
use \OtherNS\A;
use \OtherNS\D;

$a = new A();
$b = new C();
$d = new D();
<?php
namespace NS\Something;

use \OtherNS\A;
use \OtherNS\C;
use \OtherNS\D;

$a = new A();
$b = new C();
$d = new D();
note how it sorts the use clauses, and removes unused ones

PSR configuration

Before After
<?php
for($i = 0; $i < 10; $i++)
{
if($i%2==0)
echo "Flipflop";
}
<?php
for ($i = 0; $i < 10; $i++) {
    if ($i%2 == 0) {
        echo "Flipflop";
    }
}
Note the identation of 4 spaces.
<?php
class A {
function a(){
return 10;
}
}
<?php
class A
{
    public function a()
    {
        return 10;
    }
}
Note the braces position, and the visibility adjustment in the method a().
<?php
namespace NS\Something;
use \OtherNS\C;
use \OtherNS\B;
use \OtherNS\A;
use \OtherNS\D;

$a = new A();
$b = new C();
$d = new D();
<?php
namespace NS\Something;

use \OtherNS\A;
use \OtherNS\C;
use \OtherNS\D;

$a = new A();
$b = new C();
$d = new D();
note how it sorts the use clauses, and removes unused ones

The Versions

28/01 2018

dev-master

9999999-dev https://github.com/phpfmt-next/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

The Development Requires

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

28/01 2018

19.6.7

19.6.7.0 https://github.com/phpfmt-next/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

The Development Requires

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

13/12 2017

19.6.6

19.6.6.0 https://github.com/phpfmt-next/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

The Development Requires

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

01/04 2016

19.6.5

19.6.5.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/03 2016

19.6.4

19.6.4.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

13/03 2016

19.6.3

19.6.3.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

10/03 2016

19.6.2

19.6.2.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

07/03 2016

19.6.1

19.6.1.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/03 2016

19.6.0

19.6.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/03 2016

19.5.2

19.5.2.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/03 2016

19.5.1

19.5.1.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

24/02 2016

19.5.0

19.5.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

23/02 2016

19.4.0

19.4.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

22/02 2016

19.3.2

19.3.2.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/01 2016

19.3.1

19.3.1.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/01 2016

19.3.0

19.3.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

25/01 2016

19.2.2

19.2.2.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

13/01 2016

19.2.1

19.2.1.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

13/01 2016

19.2.0

19.2.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/01 2016

19.1.0

19.1.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

15/12 2015

19.0.0

19.0.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

11/12 2015

18.5.0

18.5.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

08/12 2015

18.4.0

18.4.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

02/12 2015

18.3.0

18.3.0.0 https://github.com/phpfmt/fmt

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

16/11 2015

18.2.0

18.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

15/11 2015

18.1.0

18.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

14/11 2015

18.0.0

18.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

14/11 2015

17.8.0

17.8.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

11/11 2015

17.7.0

17.7.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/11 2015

17.6.0

17.6.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

06/11 2015

17.5.0

17.5.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/11 2015

17.4.0

17.4.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/10 2015

17.3.0

17.3.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/10 2015

17.2.0

17.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

28/10 2015

17.1.0

17.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

28/10 2015

17.0.0

17.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

26/10 2015

16.1.1

16.1.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

26/10 2015

16.1.0

16.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

20/10 2015

16.0.0

16.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

19/10 2015

15.2.0

15.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.6.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/10 2015

15.1.1

15.1.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/10 2015

15.1.0

15.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/10 2015

15.0.0

15.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/10 2015

14.8.0

14.8.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

07/10 2015

14.7.1

14.7.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/10 2015

14.7.0

14.7.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/10 2015

14.6.1

14.6.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/10 2015

14.6.0

14.6.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

25/09 2015

14.5.1

14.5.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

24/09 2015

14.5.0

14.5.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

24/09 2015

14.4.0

14.4.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

24/09 2015

14.3.0

14.3.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

23/09 2015

14.2.0

14.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

18/09 2015

14.1.0

14.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

16/09 2015

14.0.0

14.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

11/09 2015

13.5.0

13.5.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

08/09 2015

13.4.0

13.4.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

01/09 2015

13.3.0

13.3.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/08 2015

13.2.0

13.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

27/08 2015

13.1.0

13.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

25/08 2015

13.0.6

13.0.6.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

24/08 2015

13.0.5

13.0.5.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/08 2015

13.0.4

13.0.4.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/08 2015

13.0.3

13.0.3.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/08 2015

13.0.2

13.0.2.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/08 2015

13.0.1

13.0.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

16/08 2015

13.0.0

13.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

12/08 2015

12.2.0

12.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

12/08 2015

12.1.1

12.1.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

12.1.0

12.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

12.0.3

12.0.3.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

12.0.2

12.0.2.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

12.0.1

12.0.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

12.0.0

12.0.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

04/08 2015

11.0.1

11.0.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/08 2015

10.2.1

10.2.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/07 2015

10.2.0

10.2.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

27/07 2015

10.1.1

10.1.1.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

27/07 2015

10.1.0

10.1.0.0 https://github.com/phpfmt/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

23/07 2015

10.0.7

10.0.7.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

22/07 2015

10.0.6

10.0.6.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.5

10.0.5.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.4

10.0.4.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.3

10.0.3.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.2

10.0.2.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.1

10.0.1.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

21/07 2015

10.0.0

10.0.0.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/07 2015

9.6.2

9.6.2.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/07 2015

9.6.1

9.6.1.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

17/07 2015

9.6.0

9.6.0.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

16/07 2015

9.5.1

9.5.1.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

13/07 2015

9.5.0

9.5.0.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/07 2015

9.4.4

9.4.4.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

09/07 2015

9.4.3

9.4.3.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

06/07 2015

9.4.2

9.4.2.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/07 2015

9.4.1

9.4.1.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/07 2015

9.4.0

9.4.0.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

03/07 2015

9.3.9

9.3.9.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/06 2015

9.3.8

9.3.8.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax

30/06 2015

9.3.7

9.3.7.0 https://github.com/dericofilho/php.tools

A script to automatically fix K&R and PSR-1/2 Coding Standard.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.4.0
  • ext-tokenizer *

 

by Carlos C

style formatter formatting coding psr2 psr1 language syntax