PHPackages                             clorichel/scqat - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [CLI &amp; Console](/categories/cli)
4. /
5. clorichel/scqat

AbandonedLibrary[CLI &amp; Console](/categories/cli)

clorichel/scqat
===============

Standardized Code Quality Assurance Tool

v0.5(11y ago)0437Apache-2.0PHPPHP &gt;=5.4

Since Feb 23Pushed 9y ago1 watchersCompare

[ Source](https://github.com/clorichel/SCQAT)[ Packagist](https://packagist.org/packages/clorichel/scqat)[ Docs](https://github.com/clorichel/SCQAT)[ RSS](/packages/clorichel-scqat/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (11)Versions (6)Used By (0)

> ### *Officially abandoned : head to [SonarQube](http://www.sonarqube.org/) with the [PHP Plugin](http://docs.sonarqube.org/display/PLUG/PHP+Plugin) to ensure efficient code quality assurance.*
>
> [](#officially-abandoned--head-to-sonarqube-with-the-php-plugin-to-ensure-efficient-code-quality-assurance)

[![Version](https://camo.githubusercontent.com/dc04e4ba9b5f09c13c8b50020e4787fdfaaeb68ed9c5855f14465f9683c04fd3/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636c6f72696368656c2f73637161742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/clorichel/scqat) [![License](https://camo.githubusercontent.com/e807574e23b806e410dbd3d0aa6b1dd819c5e99bfcf3feb3ed5ed422a4f0d277/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f636c6f72696368656c2f73637161742e7376673f7374796c653d666c61742d737175617265)](https://github.com/clorichel/scqat/blob/master/LICENSE) [![Downloads](https://camo.githubusercontent.com/11a07bd3f323b261dc9f69f8652034c99a030b1a9635e98d20925b1529ddcea9/687474703a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636c6f72696368656c2f73637161742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/clorichel/scqat) [![SensioLabsInsight](https://camo.githubusercontent.com/36b1e3e980660b9664238e90ce56ad69cfea18f1b261c05b71cd53ba3ec240cd/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f66353333346536382d343535332d343738662d623833662d6164643135393632336439642f6d696e692e706e67)](https://insight.sensiolabs.com/projects/f5334e68-4553-478f-b83f-add159623d9d)

SCQAT
=====

[](#scqat)

This is SCQAT, the **S**tandardized **C**ode **Q**uality **A**ssurance **T**ool, an open source set of utilities that ensures the quality of the code for you, your development team and your boss.

SCQAT is a lightweight way to wrap industry standard code quality analyzers in a simple and efficient tool.

Installation
------------

[](#installation)

You need to run PHP 5.4 or greater.

### Install Composer

[](#install-composer)

SCQAT relies on [Composer](https://getcomposer.org/) magic to manage dependencies. If you haven't already installed it, just grab `composer.phar` running the one-liner install command you will [find here](https://getcomposer.org/download/).

We will assume that you will run `composer.phar` locally placed in a newly created `/path/to/folder` directory.

### Install or update SCQAT

[](#install-or-update-scqat)

```
php composer.phar require clorichel/scqat:0.5

```

Thanks to each Composer contributor, yes, that was it. First composer require will install everything, another require in the same folder with a new version number will simply update.

#### Globally

[](#globally)

Using Linux / Unix / OSX ? Nothing simplest, run the composer require then :

```
ln -s /path/to/folder/vendor/bin/scqat /usr/local/bin/scqat

```

Command failed ? Just run again with sudo. In OSX ? Create `/usr/local/bin/` folder which may not exist.

There is absolutely no need to run that command again when updating SCQAT.

Usage
-----

[](#usage)

Installed globally ? Just open your console and do :

```
scqat -d /path/to/sourcecode

```

Your code has just been analyzed ! The quality report shown is self-explanatory. Not installed globally ? You have to add the path, run `/path/to/folder/vendor/bin/scqat`

Have a look to the [CLI Manual](docs/CLI/Manual.md) for detailed usage. Enpower your projects with a simple `.scqat` YAML file to configure nearly everything as described in the [Configuration Manual](docs/Configuration.md).

What is it about
----------------

[](#what-is-it-about)

SCQAT aims to be an universal tool to ensure code QA. Initial development was focused on PHP code language, through a simple tool running command line (CLI).

### How can it help me

[](#how-can-it-help-me)

You areSCQAT will help youA single developer*Be sure and proud of your code quality, even before committing it*In a team of developers*And your colleagues to all work on the same standard basis*The team manager*Ensuring the quality of your team working, without even reading source code*Big boss*Being confident in your developers team(s), their actual skills, the bleeding edge state of your company code base*End customer*Knowing the quality level of the job that was done*### I would like to add quality checks

[](#i-would-like-to-add-quality-checks)

Is your favorite language and/or QA tool missing ? You are pleased to open an issue.

Composer familiar, please send a pull request : just implement a `\SCQAT\LanguageAbstract` with a simple `fileNameMatcher` method to determine which filenames your language will handle, and a `\SCQAT\AnalyzerAbstract` that does the job and return a `\SCQAT\Result`.

See `\SCQAT\Language\PHP` and `\SCQAT\Language\PHP\Analyzer\Lint` for concrete examples, and just duplicate them for a quick start.

### Future work estimate

[](#future-work-estimate)

For instance SCQAT does exactly what it says : it's an efficient tool to standardize code quality assurance. You can run it on many platforms. It installs in no time. Reports are clear and clean. One can use it on a git pre-commit hook or add it on a continuous integration stack. Little PHP development skills are required to implement new languages and analyzers.

Short term work is listed in the [CHANGELOG](CHANGELOG.md) with each version.

Mid to long term will be working on reports to be able to export them in some usual formats (TXT, and HTML), rating and ranking with badges, and any other need that could appear. You are all pleased to open issues or pull requests with your ideas and/or needs.

Uninstall
---------

[](#uninstall)

Nothing has been dispatched everywhere, simply remove your `/usr/local/bin/scqat` symlink (if installed globally) and the `/path/to/folder` install directory. Before doing this, you are pleased to open an issue if something went bad for you ;)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~4 days

Total

5

Last Release

4083d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8387bc5be8291c91bbbf48cfedfc04a1117a7a0bfdf0c2eb4edaaaa325e03630?d=identicon)[clorichel](/maintainers/clorichel)

---

Top Contributors

[![clorichel](https://avatars.githubusercontent.com/u/12629433?v=4)](https://github.com/clorichel "clorichel (45 commits)")

---

Tags

phpclicodequalitystandardqaSimplereportHOOKintegrationcontinuousefficientTeamskillsRatinganalyzepre-commitanalyzerrankingassuranceprecommit

### Embed Badge

![Health badge](/badges/clorichel-scqat/health.svg)

```
[![Health](https://phpackages.com/badges/clorichel-scqat/health.svg)](https://phpackages.com/packages/clorichel-scqat)
```

###  Alternatives

[nunomaduro/phpinsights

Instant PHP quality checks from your console.

5.6k10.8M426](/packages/nunomaduro-phpinsights)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[acquia/orca

A tool for testing a company's software packages together in the context of a realistic, functioning, best practices Drupal build

32902.4k](/packages/acquia-orca)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[crunzphp/crunz

Schedule your tasks right from the code.

2292.0M6](/packages/crunzphp-crunz)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
