2017 © Pedro Peláez
 

library symfony-my-cs

My coding standard for Symfony project

image

2latlantik/symfony-my-cs

My coding standard for Symfony project

  • Thursday, April 5, 2018
  • by 2latlantik
  • Repository
  • 1 Watchers
  • 0 Stars
  • 15 Installations
  • Shell
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 7 % Grown

The README.md

Symfony-My-Cs

The goal of this library is to gather a set of process to maintain a good code quality of my symfony projects. Failure to respect some good practices will block the consideration of commit git, (*1)

I combine the use of different libraries to approve git commit which are: - PHP-Lint (A tool to analyze PHP code and to return usage errors) - PHP-CS (A tool to control compliance with PSR2 standards here) - PHP-CS-FIXER (A tool to control the respect of several coding conventions), (*2)

It is also possible to use PHP Mess Detector to further refine the detection of a moderately explicit and error-prone code, (*3)

Requirements

  • Usage on Symfony4 project
  • Usage with a versioned project with Git

Installation and Usage

I - Install the process of this library

To be able to install the different code verification processes you have to put these lines in the composer.json file., (*4)

"scripts" : {
    "my-cs-install": [
        "SymfonyMyCs\\Git\\Hooks\\PostInstall::installHooks"
    ] 
}

Then you can run the installaton script via the command, (*5)

composer run-script my-cs-install

II - Installation of the Symfony Code Quality executable

Symfony created his own code parser and named it http://cs.sensiolabs.org/ ., (*6)

You must install it to allow your commit to be validated., (*7)

III - Main moment of library actions

At the time of a commit git, (*8)

PHP Lint and PHPCS check for errors and possibly block commit. At the end php-cs-fix fixes the problems still present. A validated commit is therefore composed of PHP code respecting a set of standards recognized by all., (*9)

Execution of PHPMD to further improve the quality of the code, (*10)

./vendor/bin/phpmd src/Controller/ [format] phpmd

where format : xml|text|html, (*11)

License

This project is licensed under the MIT License - see the LICENSE.md file for details, (*12)

The Versions

05/04 2018

dev-master

9999999-dev

My coding standard for Symfony project

  Sources   Download

The Requires

 

The Development Requires