digipolisgent / qa-drupal
Quality Assurance tools and configuration for Drupal websites and extensions.
Installs: 5 145
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 1
Requires
- php: ^8.3
- drupal/coder: ^8.3
- drupal/core: ^10.3 || ^11.0
- drupal/drupal-extension: ^5.0
- enlightn/security-checker: ^1.4
- ergebnis/composer-normalize: ^2.11
- mglaman/phpstan-drupal: ^1.1
- nette/neon: ^3.2
- phpcompatibility/php-compatibility: ^9.3
- phpmd/phpmd: ^2.11
- phpro/grumphp-shim: ^1.5.0
- phpspec/prophecy: ^1.10
- phpspec/prophecy-phpunit: ^2
- phpstan/phpstan-deprecation-rules: ^1.0
- phpunit/phpunit: ^9.3
- sebastian/phpcpd: ^6.0
- symfony/phpunit-bridge: ^5.2 || ^6.0
- dev-develop
- 3.0.1
- 3.0.0
- 2.x-dev
- 2.1.1
- 2.1.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.8.1
- 1.8.0
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.15
- 1.4.14
- 1.4.13
- 1.4.12
- 1.4.11
- 1.4.10
- 1.4.9
- 1.4.8
- 1.4.7
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.12
- 1.3.11
- 1.3.10
- 1.3.9
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.0
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.1
- 0.1.0
- dev-main
- dev-2.x-dev
This package is auto-updated.
Last update: 2024-11-20 08:27:58 UTC
README
This package provides a set of Quality Assurance tools and configuration files for Drupal websites and extensions (modules, themes or profiles).
Requirements
Versions
The versions support different PHP & Drupal versions:
- Until 1.4.x : PHP 7.3 or 7.4 & Drupal 8.8+ or 9+.
- From 1.5.x : PHP 7.4 & Drupal 9.1 or higher.
- From 1.7.X : PHP 7.4, 8.X & DRUPAL 9.3 or higher.
- From 3.0.x : PHP 8.3, DRUPAL 10.3 or higher.
Installation
The installation depends on the type of project: website or Drupal module.
Drupal website
Add the grumphp
entry to the extra
section of your composer.json
.
"grumphp": { "config-default-path": "vendor/digipolisgent/qa-drupal/configs/grumphp-site.yml" }
Add the qa-drupal package as dev requirement:
composer require --dev digipolisgent/qa-drupal:^1.5
Drupal module
Add the grumphp
entry to the extra
section of your composer.json
.
"grumphp": { "config-default-path": "vendor/digipolisgent/qa-drupal/configs/grumphp-extension.yml" }
Add the qa-drupal package as dev requirement:
composer require --dev digipolisgent/qa-drupal:^1.5
Configuration
General
If required you can extend or override the provided configuration file of a task. Simply create the matching configuration file in the root of your project.
For example, to override the provided phpcs.xml
file you can either create a
phpcs.xml
or phpcs.local.xml
file.
Note that the .local.
files should only be used for changes that shouldn't be
committed. Exclude them in .gitignore
:
/*.local.*
Yaml and Neon files will extend (merged into) the provided configuration file by
default. Create a .env
or .env.local
file and add following contents to
change this behaviour:
[FILENAME]_SKIP_[TYPE]=1
Wherein [FILENAME]
matches the configuration filename and [TYPE]
is either:
LOCAL
to skip for example yourphpstan.local.neon
file.PROJECT
to skip for example yourphpstan.neon
file.PACKAGE_TYPE
to skip for example the providedphpstan-extension.neon
orphpstan-site.neon
file.PACKAGE_GLOBAL
to skip for example the providedphpstan.neon
file.
Other file types cannot be merged and will just override all other less specific files.
PHPStan in deprecations only mode
Create a phpstan.neon
file and add following contents to ignore everything
except deprecations:
parameters:
customRulesetUsed: true
ignoreErrors:
- '#^(?:(?!deprecated).)*$#'
Ignore automatically created config files
Some GrumPHP tasks require a config file. These are automatically creacted, from
the examples within vendor/qa-drupal/config or by the project specific files
within your website or drupal module root directory. The generated files are
also stored in the same website/module root. You can recognize these files by
the .qa-drupal.
suffix.
These files should not be committed! Add them to the .gitignore
file:
/*.qa-drupal.*
Ignore PHPUnit build files
When the PHPUnit task runs, coverage report files are stored into the build
directory located in the root of your website/project. Add this file to the
.gitignore
file:
/build /.phpunit.result.cache
Run PHPUnit locally without coverage
Running PHPUnit with coverage report is time-consuming. You can locally speed up
PHPUnit by copying the generated phpunit.qa-drupal.xml
file to
phpunit.local.xml
and remove the <logging>
section from it.
Run GrumPHP
GrumPHP will automatically run all tasks on the changed code on git commit and push.
You can run all tasks at once:
vendor/bin/grumphp
Or you can run one or more specific tasks manually by running:
vendor/bin/grumphp --tasks phpcs,phpmd vendor/bin/grumphp --tasks phpunit
PHPStorm
PHPStorm requires config files for PHP_CodeSniffer, PHP Mess Detector & PhpUnit. Run the grumphp command at least once (successfully) to generate these files.
The files will be created as:
phpcs.qa-drupal.xml
: PHP_CodeSniffer config file.phpmd.qa-drupal.xml
: PHP Mess Detector config file.phpunit.qa-drupal.xml
: PHPUnit config file.
Configure the paths to these files in PHPStorm:
- Editor > Inspections > PHP > Quality tools > PHP Mess Detector validation
Add
phpmd.qa-drupal.xml
to the "Custom rulesets". - Editor > Inspections > PHP > Quality tools > PHP_CodeSniffer validation
Set "Coding Standard" to "Custom" and set the path to
phpcs.qa-drupal.xml
. - Languages & Frameworks > PHP > Test Frameworks > Test Runner
Set "Default configuration file" to
phpunit.qa-drupal.xml
.
CodeClimate
Update the .codeclimate.yml
file within your project.
Make sure that you use the CodeClimate specific phpcs config file:
prepare: fetch: - url: "https://raw.githubusercontent.com/digipolisgent/php_package_qa-drupal/1.x/configs/phpcs-codeclimate.xml" path: ".phpcs.xml"
Make sure that you use the beta channel for the PHPCodeSniffer plugin:
plugins: phpcodesniffer: enabled: true channel: beta config: standard: ".phpcs.xml"
PHP compatibility
In order to check php compatibility you can use the phpcs PHPCompatibility
sniff:
php vendor/bin/phpcs -p --ignore="*/vendor/*" --extensions=php,inc,module,install,theme --runtime-set testVersion 8.1 --standard=PHPCompatibility ./web/modules/contrib