sebastian/phpdcd 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sebastian/phpdcd

最新稳定版本:1.0.2

Composer 安装命令:

composer require sebastian/phpdcd

包简介

Dead Code Detector (DCD) for PHP code.

README 文档

README

This project is no longer maintained and its repository is only kept for archival purposes.

Latest Stable Version Build Status

PHP Dead Code Detector (PHPDCD)

phpdcd is a Dead Code Detector (DCD) for PHP code. It scans a PHP project for all declared functions and methods and reports those as being "dead code" that are not called at least once.

Limitations

As PHP is a very dynamic programming language, the static analysis performed by phpdcd does not recognize function or method calls that are performed using one of the following language features:

  • Reflection API
  • call_user_func() and call_user_func_array()
  • Usage of the new operator with variable class names
  • Variable class names for static method calls such as $class::method()
  • Variable function or method names such as $function() or $object->$method()
  • Automatic calls to methods such as __toString() or Iterator::*()

Also note that infering the type of a variable is limited to type-hinted arguments (function foo(Bar $bar) {}) and direct object creation ($object = new Clazz)

Installation

PHP Archive (PHAR)

The easiest way to obtain PHPDCD is to download a PHP Archive (PHAR) that has all required dependencies of PHPDCD bundled in a single file:

wget https://phar.phpunit.de/phpdcd.phar
chmod +x phpdcd.phar
mv phpdcd.phar /usr/local/bin/phpdcd

You can also immediately use the PHAR after you have downloaded it, of course:

wget https://phar.phpunit.de/phpdcd.phar
php phpdcd.phar

Composer

Simply add a dependency on sebastian/phpdcd to your project's composer.json file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json file that just defines a development-time dependency on PHPDCD:

{
    "require-dev": {
        "sebastian/phpdcd": "*"
    }
}

For a system-wide installation via Composer, you can run:

composer global require 'sebastian/phpdcd=*'

Make sure you have ~/.composer/vendor/bin/ in your path.

sebastian/phpdcd 适用场景与选型建议

sebastian/phpdcd 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 996.44k 次下载、GitHub Stars 达 404, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 sebastian/phpdcd 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sebastian/phpdcd 我们能提供哪些服务?
定制开发 / 二次开发

基于 sebastian/phpdcd 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 996.44k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 405
  • 点击次数: 28
  • 依赖项目数: 59
  • 推荐数: 1

GitHub 信息

  • Stars: 404
  • Watchers: 25
  • Forks: 49
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 未知