Perform code fix and review

dev-master 2017-05-12 08:51 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:53:07 UTC


README

Packagist Software License Build Status Coverage Status Quality Score Total Downloads

Perform code fix and review

Tools list

Install

Via Composer

composer require funivan/cs:dev-master

Usage

  # run review tool
  ./vendor/bin/cs.php review;

  # run fixer tool
  ./vendor/bin/cs.php fix;

Custom configuration

Create custom configuration file. For example cs-fix.php

<?php
  # file cs-fix.php
  require __DIR__ . '/vendor/autoload.php';


  use Funivan\Cs\Configuration\CsConfiguration;

  $configuration = CsConfiguration::createFixerConfiguration();
  // You can set custom file finder
  // $configuration->setFileFinder(new MyProjectCustomFileFinder());

  // You can add custom tools
  // $configuration->setTool(new MyProjectCustomCheckTool());

Then run fixer

  ./vendor/bin/cs.php fix --configuration=cs-fixer.php -vvv

Testing

    ./vendor/bin/phpunit

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.