定制 elph-studio/laravel-testing-tools 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

elph-studio/laravel-testing-tools

Composer 安装命令:

composer require --dev elph-studio/laravel-testing-tools

包简介

Laravel Testing Tools

README 文档

README

Elephant Studio

Elephant Studio :: Laravel testing tools

This package provides preconfigured PHP Unit and Linting Tools packages for Laravel projects.

It also includes vendor testing tool that can be run during GitHub workflow to disable PR merging if some vendors do not meet production requirements.

PHP Unit configuration contains

  1. Test Cases
  2. Configuration file
    • Works with default tests directories (these must be created):
      • tests/Unit
      • tests/Integration
      • tests/Feature
    • Also works with Laravel Modules (not mandatory):
      • Module/*/Test/Unit
      • Module/*/*/Test/Unit
      • Module/*/Test/Integration
      • Module/*/*/Test/Integration
      • Module/*/Test/Feature
      • Module/*/*/Test/Feature
    • Configuration file will be used only if there is no local configuration file config/phpunit.xml

Linting tools configuration contains

  1. Strict PHP CS rules set

  2. PHP CS Fixer rules set

  3. These rules sets will be used only if local rules set are not found in config/phpcs_rules.xml and config/csfixer.php

Installation & running

Install

composer require --dev elph-studio/laravel-testing-tools

Run PHP Unit tests:

vendor/bin/unit

Run PHP Unit tests to test by specific filter:

vendor/bin/unit someSpecificTestOrTestsCategory

Run Linting tools (run both PHP CS and PHP CS Fixer):

vendor/bin/lint

Run Linting tools to test exact file or directory:

vendor/bin/lint path/to/file/or/directory

Automatic Lint fixing:

vendor/bin/lint fix

Automatic Lint fixing of specific file or directory:

vendor/bin/lint fix path/to/file/or/directory

Running Vendors Validator in GitHub Workflow

.env

VENDORS_VALIDATOR_URL=https://raw.githubusercontent.com/elph-studio/laravel-testing-tools/refs/heads/main/src/Helper/vendors_validator.php
VENDORS_VALIDATOR_SKIP=roave/security-advisories

workflow.yml

  vendors:
     name: Validate vendors
     runs-on: ubuntu-latest
     steps:
        - name: Checkout required files
          uses: actions/checkout@v4
          with:
             sparse-checkout: |
                .github/.env
                composer.lock
             sparse-checkout-cone-mode: false

        - name: Read .env file
          uses: xom9ikk/dotenv@v2.3.0
          with:
             path: .github/

        - name: Download vendors_validator
          run: |
             curl -sSL ${{ env.VENDORS_VALIDATOR_URL }} \
               -o vendors_validator.php

        - name: Validate vendors
          run: php vendors_validator.php --skip=${{ env.VENDORS_VALIDATOR_SKIP }}

Failed workflow example:

Failed workflow example

elph-studio/laravel-testing-tools 适用场景与选型建议

elph-studio/laravel-testing-tools 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 79 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 09 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「testing」 「phpunit」 「standards」 「lint」 「phpcs」 「psr」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

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

围绕 elph-studio/laravel-testing-tools 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

  • 总下载量: 79
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 21
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-09