web-php VS PHP Mess Detector

Compare web-php vs PHP Mess Detector and see what are their differences.

PHP Mess Detector

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. (by phpmd)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
web-php PHP Mess Detector
4 9
811 2,292
0.2% 0.6%
9.4 8.6
7 days ago 1 day ago
PHP PHP
GNU General Public License v3.0 or later BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

web-php

Posts with mentions or reviews of web-php. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-02.
  • Underestimated PHP
    6 projects | dev.to | 2 Jul 2022
    Some of the references: https://github.com/php/web-php/pull/602 - redesign the PHP home page, to make it look more up-to-date with UI/UX trends. https://wiki.php.net/rfc/auto-capture-closure - Short Closures 2.0 https://thephp.foundation/blog/2022/06/30/php-core-roundup-3/ - Detailed report on progress from PHP-foundation collective
  • Can I PHP? - caniuse.com but for PHP features
    3 projects | /r/PHP | 29 Apr 2022
    I love this idea, and I'm tempting to contribute. I think first of all we need an open database with all manual entries with their initial version, deprecated version and removed version. We also need for all extension based manual entries a field indicating the name of the extension and/or whether they are enabled by default. Using https://github.com/php/web-php we can do a local extraction of this informtion. The UI and search algorithm are less interesting to me, but what you've made seems fine to me.
  • Searching php.net document is unfriendly for beginners.
    5 projects | /r/PHP | 23 Apr 2022
    If you're interested in seeing if you can improve the search facility, the PHP website source is available at https://github.com/php/web-php - the search facility is in search.php and results.php in the repository root. The autocomplete suggestions are controlled by js/search.js. It looks like some related files may also be in the manual/en directory.
  • web-php/supported-versions.php at master · php/web-php
    1 project | /r/u_rosdiablatiff01 | 18 Dec 2021

PHP Mess Detector

Posts with mentions or reviews of PHP Mess Detector. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-18.
  • PHP libraries and tools
    47 projects | dev.to | 18 Oct 2023
    PHPMD - PHP Mess Detector: 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.
  • Top 6 PHP code quality tools 2023
    7 projects | dev.to | 30 May 2023
    PHPMD Mess Detector: PHP Mess Detector PHP Mess Detector identifies potential problems and "code smells" in PHP code. It detects complex code, unused variables, duplicated code blocks, and other issues that may indicate poor code quality. It helps developers refactor and clean up their codebase. Documentation: To explore PHP Mess Detector and understand its usage, refer to the official repository: PHP Mess Detector Repository
  • PHP in 2023 - stitcher.io
    7 projects | /r/PHP | 17 Jan 2023
    While you're at it, also include code-style checkers like phpcs, phpmd and/or php-cs-fixer
  • Underestimated PHP
    6 projects | dev.to | 2 Jul 2022
    Mess detector
  • Github Actions for Symfony 5 PHPUnit and more
    7 projects | dev.to | 10 Nov 2021
    name: Symfony 5 Tests on: push: branches: - main - dev pull_request: jobs: symfony: name: Symfony 5.0 (PHP ${{ matrix.php-versions }}) # https://hub.docker.com/_/ubuntu/ runs-on: ubuntu-latest strategy: fail-fast: true matrix: php-versions: ['7.4'] steps: # https://github.com/actions/checkout (official) - name: Checkout uses: actions/checkout@v2 # https://github.com/shivammathur/setup-php (community) - name: Setup PHP, extensions and composer with shivammathur/setup-php uses: shivammathur/setup-php@verbose with: php-version: ${{ matrix.php-versions }} extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, dom, filter, gd, iconv, json, mbstring, pdo # Composer - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" # https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows - name: Cache composer dependencies uses: actions/cache@v1 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Install Composer dependencies run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader # https://github.com/sensiolabs/security-checker - name: Security check installed dependencies uses: symfonycorp/security-checker-action@v2 # https://github.com/chekalsky/phpcs-action (community) - name: Check PSR12 code style (PHP_CodeSniffer) uses: chekalsky/[email protected] with: enable_warnings: true installed_paths: '${{ github.workspace }}/vendor/squizlabs/php_codesniffer' phpcs_bin_path: './vendor/bin/phpcs src --ignore="Migrations/"' # https://github.com/phpmd/phpmd # - name: Analyses PHP Code (PHP Mess Detector) # run: vendor/bin/phpmd src,tests text .phpmd-ruleset.xml # https://github.com/phpstan/phpstan - name: Analyse PHP Code (PHPStan) run: vendor/bin/phpstan analyse src - name: Cache node_modules uses: actions/cache@v1 id: yarn-cache-node-modules with: path: node_modules key: ${{ runner.os }}-yarn-cache-node-modules-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn-cache-node-modules- - name: Yarn install if: steps.yarn-cache-node-modules.outputs.cache-hit != 'true' run: yarn install - name: Yarn build run: yarn run encore production - name: Archive production artifacts uses: actions/upload-artifact@v1 with: name: build path: public/build # Symfony - name: Check the Symfony console run: | php bin/console -V php bin/console about # Tests - name: Run unit and functional tests run: | php bin/phpunit --stop-on-failure # - name: Run Behat/Mink tests # run: | # php vendor/bin/behat
  • Twelve-factor app módszer a gyakorlatban / 1. rész
    6 projects | dev.to | 22 Aug 2021
  • PHP Static Analysis Tools Review
    6 projects | dev.to | 28 Apr 2021
    PHP Mess Detector is a multi-faceted static analysis PHP Tool based on PHP Depend. The kind of problems detected by PHPMD are divided into 5 main categories:
  • Automating code quality check using GrumPHP in Magento 2
    9 projects | dev.to | 11 Apr 2021
  • A minimal Drupal 9 local development environment
    7 projects | dev.to | 28 Feb 2021
    PHPMD

What are some alternatives?

When comparing web-php and PHP Mess Detector you can also consider the following projects:

PHPCompatibility - PHP Compatibility check for PHP_CodeSniffer

PHPStan - PHP Static Analysis Tool - discover bugs in your code without running it!

doc-en - English PHP documentation

PHP Code Sniffer - PHP_CodeSniffer tokenizes PHP files and detects violations of a defined set of coding standards.

can-i-php - caniuse.com but for PHP - a searchable list of new and deprecated features in recent PHP versions

PHP CS Fixer - A tool to automatically fix PHP Coding Standards issues

larastan - ⚗️ Adds code analysis to Laravel improving developer productivity and code quality.

GrumPHP - A PHP code-quality tool

php-docker - Docker Official Image packaging for PHP

phan - Phan is a static analyzer for PHP. Phan prefers to avoid false-positives and attempts to prove incorrectness rather than correctness.

PHP Metrics - Beautiful and understandable static analysis tool for PHP