elph-studio/laravel-testing-tools
Composer 安装命令:
composer require --dev elph-studio/laravel-testing-tools
包简介
Laravel Testing Tools
README 文档
README
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
- Test Cases
- Configuration file
- Works with default tests directories (these must be created):
tests/Unittests/Integrationtests/Feature
- Also works with Laravel Modules (not mandatory):
Module/*/Test/UnitModule/*/*/Test/UnitModule/*/Test/IntegrationModule/*/*/Test/IntegrationModule/*/Test/FeatureModule/*/*/Test/Feature
- Configuration file will be used only if there is no local configuration file
config/phpunit.xml
- Works with default tests directories (these must be created):
Linting tools configuration contains
-
- Slevoman Coding Standards - included
- Squizlabs PHP CodeSniffer Standards - included
- OPAY Coding Stardards - included
- Moxio PHP CodeSniffer Standards - removed due to low maintainability and recurring conflicts with upper mentioned libraries latest versions
-
These rules sets will be used only if local rules set are not found in
config/phpcs_rules.xmlandconfig/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:
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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 elph-studio/laravel-testing-tools 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP_CodeSniffer custom Sniff for Laravel coding standard
HiDev plugin for PHPUnit
A set of abstractions that define core services provided by the DVSA
Testing Suite For Lumen like Laravel does.
A cli tool which generates unit tests.
This is the ZooRoyal coding standard.
统计信息
- 总下载量: 79
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 21
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-09
