bytic/phpqaconfig

Meta package for configuration files for PHP QA tools

Maintainers

👁 gabrielsolomon

Package info

github.com/bytic/phpqaconfig

pkg:composer/bytic/phpqaconfig

Statistics

Installs: 1 790

Dependents: 5

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.14 2026-04-02 14:58 UTC

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT acd0af74c8817ce71b9761a21129827fe4936265

phpunittestqualityqacode qualitystylecheck

This package is auto-updated.

Last update: 2026-06-02 15:18:30 UTC


README

PHP Code Sniffer

Configuration file: bytic.phpcs.xml

Usage

  1. Link bytic/qaconfig repo as composer dependency

    $ composer require bytic/qaconfig:^1.0

  2. Extend provided configuration to adapt it to your project.

     <?xml version="1.0" encoding="UTF-8"?>
     <ruleset name="DEMO-PHP project code style checker config">
     <rule ref="./vendor/bytic/qaconfig/bytic.phpcs.xml">
     <exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/>
     </rule>
     <rule ref="PSR1.Classes.ClassDeclaration">
     <exclude-pattern>*/_stubs.php</exclude-pattern>
     </rule>
     <rule ref="Generic.CodeAnalysis.UnconditionalIfStatement.Found">
     <exclude-pattern>*/_stubs.php</exclude-pattern>
     </rule>
     </ruleset>

Inspiration