2017 © Pedro Peláez
 

library php-cs-fixer-config

PHP-CS-Fixer config for Airmedia's projects

image

airmedia/php-cs-fixer-config

PHP-CS-Fixer config for Airmedia's projects

  • Wednesday, January 31, 2018
  • by yethee
  • Repository
  • 1 Watchers
  • 0 Stars
  • 600 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 4 % Grown

The README.md

php-cs-fixer-config

Build Status, (*1)

PHP-CS-Fixer config for Airmedia's projects., (*2)

It's based on the ideas of refinery29/php-cs-fixer-config., (*3)

Installation

$ composer require airmedia/php-cs-fixer-config --dev

Usage

Configuration

Create a configuration file .php_cs in the root of your project:, (*4)

<?php

$config = new AirMedia\CS\Config();
$config->getFinder()->in(__DIR__);

$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;

$config->setCacheFile($cacheDir . '/.php_cs.cache');

return $config;

Git

Add .php_cs.cache (this is the cache file created by php-cs-fixer) to .gitignore:, (*5)

vendor/
.php_cs.cache

Fixing issues

Manually

If you need to fix issues locally, just run, (*6)

$ ./vendor/bin/php-cs-fixer fix -v

Pre-commit hook

You can add a pre-commit hook, (*7)

$ touch .git/pre-commit && chmod +x .git/pre-commit

Paste this into .git/pre-commit:, (*8)

#!/usr/bin/env bash

echo "pre commit hook start"

CURRENT_DIRECTORY=`pwd`
GIT_HOOKS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

PROJECT_DIRECTORY="$GIT_HOOKS_DIR/../.."

cd $PROJECT_DIRECTORY;
PHP_CS_FIXER="vendor/bin/php-cs-fixer"

HAS_PHP_CS_FIXER=false

if [ -x "$PHP_CS_FIXER" ]; then
    HAS_PHP_CS_FIXER=true
fi

if $HAS_PHP_CS_FIXER; then
    git status --porcelain | grep -e '^[AM]\(.*\).php$' | cut -c 3- | while read line; do
        ${PHP_CS_FIXER} fix --config-file=.php_cs --verbose ${line};
        git add "$line";
    done
else
    echo ""
    echo "Please install php-cs-fixer, e.g.:"
    echo ""
    echo "  composer require friendsofphp/php-cs-fixer:2.0.0"
    echo ""
fi

cd $CURRENT_DIRECTORY;
echo "pre commit hook finish"

License

This package is licensed using the MIT License., (*9)

The Versions

31/01 2018

dev-master

9999999-dev

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

31/01 2018

0.4.1

0.4.1.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

31/01 2018

0.4.0

0.4.0.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

22/02 2017

0.3.1

0.3.1.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

14/02 2017

0.3.0

0.3.0.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

03/12 2016

0.2.0

0.2.0.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires

02/12 2016

0.1.0

0.1.0.0

PHP-CS-Fixer config for Airmedia's projects

  Sources   Download

MIT

The Requires

 

The Development Requires