Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phpmd/phpmd
PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD. PHPMD can be seen as an user friendly frontend application for the raw metrics stream measured by PHP Depend.
https://github.com/phpmd/phpmd
clean-code hacktoberfest mess-detector php pmd static-analysis static-analyzer
Last synced: 3 days ago
JSON representation
PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD. PHPMD can be seen as an user friendly frontend application for the raw metrics stream measured by PHP Depend.
- Host: GitHub
- URL: https://github.com/phpmd/phpmd
- Owner: phpmd
- License: bsd-3-clause
- Created: 2011-01-29T21:51:55.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T18:27:14.000Z (2 months ago)
- Last Synced: 2024-11-25T13:08:35.315Z (17 days ago)
- Topics: clean-code, hacktoberfest, mess-detector, php, pmd, static-analysis, static-analyzer
- Language: PHP
- Homepage: https://phpmd.org
- Size: 7.68 MB
- Stars: 2,342
- Watchers: 51
- Forks: 347
- Open Issues: 148
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: .github/SECURITY.md
- Authors: AUTHORS.rst
Awesome Lists containing this project
- awesome-laravel-filament - PHPMD
- awesome - phpmd/phpmd - PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD. PHPMD can be seen as an user friendly frontend application for the raw metrics stream measure (PHP)
- awesome-php - PHP Mess Detector - A library that scans code for bugs, sub-optimal code, unused parameters and more. (Table of Contents / Code Quality)
- awesome-php-cn - PHP Mess Detector - 图书馆扫描代码错误,次优的代码,未使用的参数等等. (目录 / 代码质量 Code Quality)
- awesome-projects - PHP Mess Detector - A library that scans code for bugs, sub-optimal code, unused parameters and more. (PHP / Code Quality)
- awesome-linters - PHP Mess Detector - PHPMD can be seen as a (Linters / PHP)
- php-awesome - PHPMD - PHP Mess Detector(PHP 问题探测器) (类库 / 代码检查/静态分析)
- awesome-php - PHP Mess Detector - A library that scans code for bugs, sub-optimal code, unused parameters and more. (Table of Contents / Code Quality)
README
PHPMD
=====PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD. PHPMD can be seen as an user friendly frontend application for the raw metrics stream measured by PHP Depend.
https://phpmd.org
.. image:: https://poser.pugx.org/phpmd/phpmd/v/stable.svg
:target: https://packagist.org/packages/phpmd/phpmd
:alt: Latest Stable Version.. image:: https://poser.pugx.org/phpmd/phpmd/license.svg
:target: https://packagist.org/packages/phpmd/phpmd
:alt: License.. image:: https://ci.appveyor.com/api/projects/status/pc08owbun2y00kwk?svg=true
:target: https://ci.appveyor.com/project/phpmd/phpmd
:alt: AppVeyor Build Status.. image:: https://codecov.io/gh/phpmd/phpmd/branch/master/graph/badge.svg?token=XrBrvTLJeE
:target: https://codecov.io/gh/phpmd/phpmd
:alt: Codecov Status.. image:: https://scrutinizer-ci.com/g/phpmd/phpmd/badges/build.png?b=master
:target: https://scrutinizer-ci.com/g/phpmd/phpmd/build-status/master
:alt: Scrutinizer Build Status.. image:: https://scrutinizer-ci.com/g/phpmd/phpmd/badges/quality-score.png?b=master
:target: https://scrutinizer-ci.com/g/phpmd/phpmd/?branch=master
:alt: Scrutinizer Code Quality.. image:: https://badges.gitter.im/phpmd/community.svg
:target: https://gitter.im/phpmd/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge
:alt: Chat with us on Gitter.. image:: https://poser.pugx.org/phpmd/phpmd/d/monthly
:target: https://packagist.org/packages/phpmd/phpmd
:alt: Monthly downloads.. image:: https://poser.pugx.org/phpmd/phpmd/downloads
:target: https://packagist.org/packages/phpmd/phpmd
:alt: Total downloadsInstallation
------------See https://phpmd.org/download/index.html
Command line usage
------------------Type ``phpmd [filename|directory[,filename|directory[,...]]] [report format] [ruleset file]``, i.e: ::
mapi@arwen ~ $ phpmd php/PDepend/DbusUI/ xml rulesets.xml
While the ``rulesets.xml`` ruleset file could look like this:
.. code:: xml
My custom rule set that checks my code...
The xml report would like like this:
.. code:: xml
Avoid unused parameters such as '$builder'.
You can pass a comma-separated string with list of file names
or a directory names, containing PHP source code to PHPMD.The `PHPMD Phar distribution`__ includes the rule set files inside
its archive, even if the "rulesets/codesize.xml" parameter above looks
like a filesystem reference.__ https://phpmd.org/download/index.html
Command line options
--------------------- Notice that the default output is in XML, so you can redirect it to
a file and XSLT it or whatever- You can also use shortened names to refer to the built-in rule sets,
like this: ::phpmd PHP/Depend/DbusUI/ xml codesize
- The command line interface also accepts the following optional arguments:
- ``--verbose, -v, -vv, -vvv`` - The output verbosity level. Will print more information
what is being processed or cached. Will be send to ``STDERR`` to not interfere
with report output. ``text`` output will also have under each error a link
to the documentation of the rule and format the location in a way that most
IDEs will convert into a link to open the file at the line of the error
when clicked.- ``--minimumpriority`` - The rule priority threshold; rules with lower
priority than they will not be used.- ``--reportfile`` - Sends the report output to the specified file,
instead of the default output target ``STDOUT``.- ``--suffixes`` - Comma-separated string of valid source code filename
extensions, e.g. php,phtml.- ``--exclude`` - Comma-separated string of patterns that are used to ignore
directories. Use asterisks to exclude by pattern. For example ``*src/foo/*.php`` or ``*src/foo/*``- ``--strict`` - Also report those nodes with a @SuppressWarnings annotation.
- ``--ignore-errors-on-exit`` - will exit with a zero code, even on error.
- ``--ignore-violations-on-exit`` - will exit with a zero code, even if any
violations are found.- ``--cache`` - will enable the result cache. Will default to ``.phpmd.result-cache.php`` in the
current working directory.- ``--cache-file`` - in cooperation with ``--cache`` will override the default result cache file path of
``.phpmd.result-cache.php`` to the given file path.- ``--cache-strategy`` - sets the caching strategy to determine if a file is still fresh. Either
`content` to base it on the file contents, or `timestamp` to base it on the file modified timestamp.- ``--generate-baseline`` - will generate a ``phpmd.baseline.xml`` for existing violations
next to the ruleset definition file. The file paths of the violations will be relative to the current
working directory.- ``--update-baseline`` - will remove all violations from an existing ``phpmd.baseline.xml``
that no longer exist. New violations will _not_ be added. The file path of the violations will be relative
to the current working directory.- ``--baseline-file`` - the filepath to a custom baseline xml file. If absent will
default to ``phpmd.baseline.xml``- ``--color`` - enable color in output, for instance text renderer
will show rule name in yellow and error description in red.
- ``--extra-line-in-excerpt`` - specify how many extra lines are added to a code snippet in html formatAn example command line: ::
phpmd PHP/Depend/DbusUI xml codesize --reportfile "phpmd.xml" --suffixes "php,phtml"
Options can be before or after arguments. They can be separated from their value either with a space or an equal (``=``) sign.
Thus, the following syntax is equivalent to the previous one: ::phpmd --reportfile="phpmd.xml" --suffixes="php,phtml" PHP/Depend/DbusUI xml codesize
Strings starting with ``-`` will be recognized as option names. If you have arguments starting with ``-``, set options
first, then use ``--`` to mark the explicit start or the arguments list: ::phpmd --reportfile "phpmd.xml" --suffixes "php,phtml" -- -foo/Folder xml codesize
Using multiple rule sets
````````````````````````PHPMD uses so called rule sets that configure/define a set of rules which will
be applied against the source under test. The default distribution of PHPMD is
already shipped with a few default sets, that can be used out-of-box. You can
call PHPMD's cli tool with a set's name to apply this configuration: ::~ $ phpmd /path/to/source text codesize
But what if you would like to apply more than one rule set against your source?
You can also pass a list of rule set names, separated by comma to PHPMD's cli
tool: ::~ $ phpmd /path/to/source text codesize,unusedcode,naming
You can also mix custom `rule set files`__ with build-in rule sets: ::
~ $ phpmd /path/to/source text codesize,/my/rules.xml
__ https://phpmd.org/documentation/creating-a-ruleset.html
That's it. With this behavior you can specify you own combination of rule sets
that will check the source code.Using multiple source files and folders
```````````````````````````````````````PHPMD also allows you to specify multiple source directories in case you want
to create one output for certain parts of your code ::~ $ phpmd /path/to/code,index.php,/another/place/with/code text codesize
Or use glob pattern: ::
~ $ phpmd src/main/php/*/*/*{Renderer,Node}.php text my/rules.xml
Scan input
``````````PHPMD can also read the standard input `stdin`: ::
~ $ cat src/MyService.php | phpmd - text my/rules.xml
So the PHP code to be scanned may be generated by an other program
not necessarily to be store in file.Exit codes
----------PHPMD's command line tool currently defines four different exit codes.
- *0*, This exit code indicates that everything worked as expected. This means
there was no error/exception and PHPMD hasn't detected any rule violation
in the code under test.
- *1*, This exit code indicates that an exception occurred which has
interrupted PHPMD during execution.
- *2*, This exit code means that PHPMD has processed the code under test
without the occurrence of an error/exception, but it has detected rule
violations in the analyzed source code. You can also prevent this behaviour
with the ``--ignore-violations-on-exit`` flag, which will result to a *0*
even if any violations are found.
- *3*, This exit code means that one or multiple files under test could not
be processed because of an error. There may also be violations in other
files that could be processed correctly.Renderers
---------At the moment PHPMD comes with the following renderers:
- *xml*, which formats the report as XML.
- *text*, simple textual format.
- *html*, single HTML file with possible problems.
- *json*, formats JSON report.
- *ansi*, a command line friendly format.
- *github*, a format that GitHub Actions understands.
- *gitlab*, a format that GitLab CI understands.
- *sarif*, the Static Analysis Results Interchange Format.
- *checkstyle*, language and tool agnostic XML formatBaseline
--------For existing projects a violation baseline can be generated. All violations in this baseline will be ignored in further inspections.
The recommended approach would be a ``phpmd.xml`` in the root of the project. To generate the ``phpmd.baseline.xml`` next to it::
~ $ phpmd /path/to/source text phpmd.xml --generate-baseline
To specify a custom baseline filepath for export::
~ $ phpmd /path/to/source text phpmd.xml --generate-baseline --baseline-file /path/to/source/phpmd.baseline.xml
By default PHPMD will look next to ``phpmd.xml`` for ``phpmd.baseline.xml``. To overwrite this behaviour::
~ $ phpmd /path/to/source text phpmd.xml --baseline-file /path/to/source/phpmd.baseline.xml
To clean up an existing baseline file and *only remove* no longer existing violations::
~ $ phpmd /path/to/source text phpmd.xml --update-baseline
PHPMD for enterprise
--------------------Available as part of the Tidelift Subscription.
The maintainers of ``PHPMD`` and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. `Learn more.`__
__ https://tidelift.com/subscription/pkg/packagist-phpmd-phpmd?utm_source=packagist-phpmd-phpmd&utm_medium=referral&utm_campaign=enterprise&utm_term=repo
Contributing
------------If you want to contribute to PHPMD, please consult the `contribution guide`__.
__ ./.github/CONTRIBUTING.md