2017 © Pedro Peláez
 

library php-cs-fixer-checker

A extension for the Broadway package with extra's like tactician usage and other tweaks

image

boekkooi/php-cs-fixer-checker

A extension for the Broadway package with extra's like tactician usage and other tweaks

  • Wednesday, December 2, 2015
  • by boekkooi
  • Repository
  • 1 Watchers
  • 0 Stars
  • 164 Installations
  • PHP
  • 1 Dependents
  • 1 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHP Coding Standards Fixer & Checker

This project is currently just a proof of concept, (*1)

This is a extension of the PHP Coding Standards Fixer project. It adds a set of checks to the fixer because some times the fixer can't fix a problem but you do want it to report that problem., (*2)

The main reason for adding this extension and not using PHP CodeSniffer is because I can't handle writing custom checks for it., (*3)

Example .php_cs

<?php
return \Boekkooi\CS\Config::create()
    ->setDir(__DIR__.'/src')
    ->checkers(array(
//        new \Boekkooi\CS\Checker\Contrib\FinalClassChecker(),
//        new \Boekkooi\CS\Checker\Contrib\NoMethodWithArgumentsChecker(),
        new \Boekkooi\CS\Checker\Psr4Checker(),
    ))
    ->setRules(array(
        '@PSR2' => true
    ))
;

The Versions

02/12 2015

dev-master

9999999-dev

A extension for the Broadway package with extra's like tactician usage and other tweaks

  Sources   Download

MIT

The Requires

 

The Development Requires

by Warnar Boekkooi