Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Documentation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
DevOps Tools
Documentation
Commits
f095afad
Commit
f095afad
authored
10 months ago
by
danielspeicher
Browse files
Options
Downloads
Patches
Plain Diff
Document Drupal Development Env:
composer/plugin/drupal-development-environment#1
parent
6920b079
No related branches found
No related tags found
1 merge request
!6
Develop
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/composer/plugin/drupal-dev-environment/index.md
+1
-1
1 addition, 1 deletion
docs/composer/plugin/drupal-dev-environment/index.md
docs/dev_tools/test.md
+81
-10
81 additions, 10 deletions
docs/dev_tools/test.md
with
82 additions
and
11 deletions
docs/composer/plugin/drupal-dev-environment/index.md
+
1
−
1
View file @
f095afad
...
...
@@ -15,7 +15,7 @@ It provides a massive amount of testing tools, which can be executed out of the
-
[
Dependency Analysis
](
../../../dev_tools/test.md#drupal-dependency-analysis
)
-
[
PHP Unit
](
../../../dev_tools/test.md#unitkernelfunctional-testing
)
-
[
PHP Code Sniffer
](
../../../dev_tools/test.md#php-code-sniffer
)
-
[
PHP PHPStan
](
../../../dev_tools/test.md#php-
code-sniffer
)
-
[
PHP PHPStan
](
../../../dev_tools/test.md#php-
stan
)
-
[
PHP Lint
](
../../../dev_tools/test.md#php-code-sniffer
)
-
[
PHP LOC
](
../../../dev_tools/test.md#php-loc
)
-
[
PHP Mess Detection
](
../../../dev_tools/test.md#php-mess-detection
)
...
...
This diff is collapsed.
Click to expand it.
docs/dev_tools/test.md
+
81
−
10
View file @
f095afad
...
...
@@ -42,24 +42,95 @@ drupal/blazy 2.16.0 2.27.0 Provides..
We have several tools to perform static code analysis.
*
Code Sniffer
*
PHP LOC
*
Mess Detection
-
[
PHP Code Sniffer
](
#php-code-sniffer
)
-
[
PHP PHPStan
](
#php-stan
)
-
[
PHP Lint
](
#php-code-sniffer
)
-
[
PHP LOC
](
#php-loc
)
-
[
PHP Mess Detection
](
../../../dev_tools/test.md#php-mess-detection
)
-
[
PHP Copy and Paste Detector
](
../../../dev_tools/test.md#php-code-sniffer
)
-
[
PHP Metrics
](
../../../dev_tools/test.md#php-code-sniffer
)
-
[
PHP Stylelint
](
../../../dev_tools/test.md#php-code-sniffer
)
-
[
Eslint
](
../../../dev_tools/test.md#php-code-sniffer
)
### PHP Code Sniffer
PHP Code Sniffer performs a static code analysis with a specific Drupal profile. It detects
code smells like static calls.
To
execute PHP C
ode Sniffer on the conso
le:
You can
execute PHP C
S for a specific Drupal contrib modu
le:
```
l3d
```
phpcs
a test phpcsmodule <contrib_module>
```
Now the entire code in that module will be analysed.
If you want to analyse a custom module, just do the following:
```
phpcs
a test phpcsmodule ../custom/<custom_module>
```
To execute PHP Code Sniffer for a file or directory:
```
phpcs
a test phpcs <file_ordirectory>
```
Whether it is a directory, it runs the analysis for everything under this directory
recursively.
Note:
**There are many errors, which can be fixed automatically.**
If you see something like this:
```
phpcs
FILE: /var/www/html/web/modules/contrib/eca/src/Entity/Model.php
----------------------------------------------------------------------
FOUND 1 ERROR AFFECTING 1 LINE
----------------------------------------------------------------------
37 | ERROR | [x] Additional blank lines found at end of doc comment
----------------------------------------------------------------------
PHPCBF CAN FIX THE 1 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------
```
You can just execute:
```
phpcs
a test phpcs-fix <contrib_module>
```
Now th errors are gone, which saves a lot of time and effort.
### PHP Stan
We use level 6 as default, which is pretty good and strict and provides a very clean code. You can adjust this in the
`phpstan.neon`
file. It looks like this:
```
phpstan
parameters:
level: 6
```
It is recommended to have such a file in every module located in its root path.
You can execute PHP Stan for a specific Drupal contrib module:
```
phpstan
a test phpstanmodule <contrib_module>
```
Now the entire code in that module will be analysed.
If you want to analyse a custom module, just do the following:
```
phpstan
a test phpstanmodule ../custom/<custom_module>
```
To execute PHP Stan for a file or directory:
```
phpstan
a test phpstan <file_ordirectory>
```
Whether it is a directory, it runs the analysis for everything under this directory
recursively.
...
...
@@ -69,7 +140,7 @@ PHP LOC prints several metrics about your code, like the average size of a class
To execute PHP LOC on the console:
```
l3d
```
phploc
a test phploc <file_ordirectory>
```
...
...
@@ -84,9 +155,9 @@ uses several profiles like:
This analysis detects also code smells like the complexity (e.g. number of
dependencies) of classes.
To execute PHP
Code Sniffer
on the console:
To execute PHP
Mess Detection
on the console:
```
l3
d
```
phpm
d
a test phpmd <file_ordirectory> json <profile>
```
...
...
@@ -97,7 +168,7 @@ recursively.
To execute the tests, you can use a single command:
```
l3d
```
phpunit
a test phpunit <file_ordirectory>
```
...
...
@@ -144,7 +215,7 @@ You can also use the execution with the debugger.
First, activate the coverage option:
```
l3d
```
debug
a debug coverage
```
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment