sci3ma/sf4grumphp

Configured GrumPHP with bunch of tools for static code analysis Symfony Framework


Keywords
symfony, php, phpunit, standards, phpcs, phpmd, code quality, PHPStan, grumphp, clean-code, code-quality, phmd, php-cs-fixer, static-analysis, symfony-grumphp
License
MIT

Documentation

Symfony + GrumPHP

symfony-grumphp is configured GrumPHP with bunch of tools for static code analysis mainly based on PSRs and Symfony Coding Standards for Symfony Framework projects.

GitHub release (latest SemVer) GitHub Packagist (custom server) GitHub last commit Travis (.org) Coveralls github

Included tools

Requirements

PHP needs to be a minimum version of PHP 7.3.
Symfony Framework needs to be a minimum version of Symfony Framework 4.0 or 5.0.

Installation

To install symfony-grumphp, install Composer, execute the following command:

composer require --dev sci3ma/symfony-grumphp

and create (or update) configuration files:

./vendor/bin/symfony-grumphp install

Configuration

You can, and perhaps you should, check and customize all configured tasks in grumphp.yml file in project root folder.

GrumPHP should be enabled by default but you can also enable GrumPHP yourself:

./vendor/bin/grumphp git:init

or disable GrumPHP:

./vendor/bin/grumphp git:deinit

You can find more GrumPHP configuration here.

Test code with the database

If you need to test code that interact with the database you need to instal dama/doctrine-test-bundle:

composer require --dev dama/doctrine-test-bundle

and uncomment extension <extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" /> in phpunit.xml.dist.
Read more about how to Test Code that Interacts with the Database

Uninstall

If you want to uninstall this library remove configuration files first:

./vendor/bin/symfony-grumphp uninstall

then remove package:

composer remove sci3ma/symfony-grumphp

Force run

You can run tests/checks our code without commit manually:

./vendor/bin/grumphp run